home *** CD-ROM | disk | FTP | other *** search
/ System Booster / System Booster.iso / Texteditors / XDME / Src / simplex.c < prev    next >
C/C++ Source or Header  |  1996-09-26  |  1KB  |  79 lines

  1. /* "STUBS" */
  2.  
  3.  
  4.  
  5. #include "defs.h"           /* for Ep, ED    */
  6. #include "null.h"
  7.  
  8. #define MYDEBUG 1
  9. #include "debug.h"
  10.  
  11. Prototype void * currentmenu  (void); /* muss neu besetzt werden bei jeder Veraenderung des aktuellen Textes */
  12. Prototype void * currenthash  (void); /* muss neu besetzt werden bei jeder Veraenderung des aktuellen Textes */
  13. Prototype void * currentwindow(void); /* muss neu besetzt werden bei jeder Veraenderung des aktuellen Textes */
  14.  
  15. Prototype void     init_structures (void);
  16.  
  17.  
  18. #if 0
  19.  
  20. void * onlymenu  = NULL;
  21.  
  22. void * currentmenu (void)
  23. {
  24.     /* return(onlymenu); */
  25.  
  26.     if ((Ep == NULL) || (Ep->menustrip == NULL)) {
  27.     return (get_menustrip (NULL));
  28.     } /* if */
  29.     return (Ep->menustrip);
  30. } /* currentmenu */
  31. #endif
  32.  
  33. #if 0
  34.  
  35. void * onlyhash  = NULL;
  36.  
  37. void * currenthash(void)
  38. {
  39.     /* return(onlyhash); */
  40.  
  41.     if ((Ep == NULL) || (Ep->keytable == NULL)) {
  42.     return (get_keytable (NULL));
  43.     } /* if */
  44.     return (Ep->keytable);
  45. } /* currenthash */
  46. #endif
  47.  
  48. #if 0
  49. void * currentwindow(void)
  50. {
  51.     return (Ep->win);
  52. } /* currentwindow */
  53. #endif
  54.  
  55. void init_structures (void)
  56. {
  57.  
  58.  
  59. #if 1
  60.     /* onlymenu = */ new_menustrip ("default",1);
  61. #endif
  62.  
  63.  
  64.  
  65. #if 1
  66.     /* onlyhash = */ new_keytable  ("default",1);
  67. #endif
  68.  
  69.  
  70. } /* init_structures */
  71.  
  72. #if 0
  73. void init_menustrips(void) {
  74. }
  75. void exit_menustrips(void) {
  76. }
  77.  
  78. #endif
  79.